home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 29 / CDT29.iso / e-Mail / WorldClient Pro 2.2.3 / wcsetup.exe / WEBHELP.ZIP / hhapplet / IndexListItem.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-10-21  |  395 b   |  14 lines

  1. package hhapplet;
  2.  
  3. import java.util.Vector;
  4.  
  5. public class IndexListItem {
  6.    public IndexSecondaryEntry main_entry;
  7.    public Vector secondary_entries;
  8.  
  9.    IndexListItem(IndexSecondaryEntry var1, Vector var2) {
  10.       this.main_entry = var1;
  11.       this.secondary_entries = var2;
  12.    }
  13. }
  14.